Method ComputedFrom(Expression<Func<TProps, TProp>>)

Assembly: redb.Core.Pro.dll

Computed field from other fields.
builder.Property(p => p.TotalPrice)
.ComputedFrom(p => p.Quantity * p.Price);

IPropertyMigrationBuilder<TProps, TProp> ComputedFrom(Expression<Func<TProps, TProp>> expression)